home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / networking / anos / install_dis.lha / AmigaDIS / Copy_Utils / jed / MAKE < prev    next >
Encoding:
Text File  |  1993-07-13  |  453 b   |  21 lines

  1.  
  2. ; MAKE
  3. ;
  4. ; runs [d]make in the current directory
  5. ; needs Matt Dillon's fifo: device to be running
  6.  
  7. (macro `make'
  8. {
  9.     (local
  10.     `marg' (arg 1 `s' `make args> ')
  11.     )
  12.     (if (! (system `newshell window con:///200/make/WAIT/AUTO/SCREEN from fifo:mk/rm'))
  13.     {
  14.     ; change "dmake" to "make", or whatever you use.
  15.     (system (format `echo >fifo:mk/wK dmake %s' (marg)))
  16.     (system `echo >fifo:mk/wK echo done.')
  17.     (system `echo >fifo:mk/wKe endcli')
  18.     })
  19. })
  20.  
  21.